home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_02 / plauger / xruntime.h < prev   
C/C++ Source or Header  |  1993-12-05  |  327b  |  14 lines

  1. Listing 4 -- class xruntime
  2.  
  3. class xruntime : public xmsg {
  4. protected:
  5.     virtual void do_raise();
  6.     xruntime(const char *what_arg, const char *where_arg,
  7.         const char *why_arg, int copyfl);
  8. public:
  9.     xruntime(const char *what_arg = 0, const char *where_arg 
  10. = 0,
  11.         const char *why_arg = 0);
  12.     virtual ~xruntime();
  13.     };
  14.